home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / embedded / m68k / fbug68k.arc / CT.C < prev    next >
C/C++ Source or Header  |  1989-08-17  |  497b  |  31 lines

  1. #include"userdef.h"
  2.  
  3. /* *************************************************** */
  4.  
  5. ctcmd(argc,argv)
  6. int argc;    /* number of arguments on the command line */
  7. char *argv;    /* command line */
  8. {
  9. extern confres;
  10.  
  11. confres=-1;
  12. /*
  13. conf();    
  14. */
  15. switch(confres)
  16. {
  17.     case 0:
  18.         print("Confidence Test Passes\n");
  19.         break;
  20.     case 1:
  21.         print("Confidence Test Fails\n");
  22.         break;
  23.     default:
  24.         print("ERROR 14:Unable to perform Confidence Test\n");
  25.         break;
  26. }
  27. }
  28.  
  29. /* *************************************************** */
  30.  
  31.